Skip to content

Commit

Permalink
Fix installer script
Browse files Browse the repository at this point in the history
Closes #213
  • Loading branch information
bocchino committed Jan 20, 2023
1 parent 1b6eaa2 commit 1b3de20
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions compiler/install
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
# FPP_INSTALL_JAVA
# ----------------------------------------------------------------------

# Go to the working directory, so that relative paths work as expected
wd=`dirname $0`
cd $wd

# Pull in the version info
. ../version.sh

scala_version="3.1.2"
Expand All @@ -37,9 +42,6 @@ else
dest=bin
fi

wd=`dirname $0`
cd $wd

dir=`dirname $dest`
dir=`cd $dir; pwd`
base=`basename $dest`
Expand Down

0 comments on commit 1b3de20

Please sign in to comment.