Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added anti-clobbering safety check #40

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 21 additions & 3 deletions setup.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
#!/bin/sh

BIN=$HOME/bin
mkdir -p $BIN

if [ -a $BIN/cs ] ; then
if ! [ -f $BIN/cs ] ; then
echo "$BIN/cs exists but is not a regular file. Not clobbering. Remove $BIN/cs and run this setup script again."
exit 1
elif ! grep -q sbt-launch\\.jar $BIN/cs ; then
echo "$BIN/cs exists, but it does not not appear to be an old conscript file. Not clobbering. Remove $BIN/cs and run this setup script again."
exit 2
else
echo
echo "Existing $BIN/cs found. Will overwrite."
fi
fi



echo "
Fetching current launch configuration...
"
Expand All @@ -13,10 +31,10 @@ echo "
[boot]
directory: $CS/boot" >> $CLC

BIN=$HOME/bin
mkdir -p $BIN


echo "#!/bin/sh
#This is conscript: https://github.com/n8han/conscript
java -jar $CS/sbt-launch.jar @$CLC \"\$@\"" > $BIN/cs

chmod a+x $BIN/cs
Expand All @@ -34,4 +52,4 @@ fi

echo "
conscript installed to $BIN/cs
"
"