Skip to content

Commit

Permalink
added INSTALL file to Linux release script
Browse files Browse the repository at this point in the history
  • Loading branch information
vsicurella committed Apr 17, 2022
1 parent 8940566 commit 347596b
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions Scripts/package-linux-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ TARGET=$PARENT_DIR/$VERSION
([[ -d $PARENT_DIR ]] && rm -r $TARGET/) || mkdir $PARENT_DIR
mkdir $TARGET

echo copying files... && \
cp "${LTE_BIN}" $TARGET/ && \
echo copying files... && \
cp "${LTE_BIN}" $TARGET/ && \
cp ./install.sh $TARGET/ && \
cp ../LICENSE $TARGET/ && \
cp -r ../Presets $TARGET/ && \
cp ../LICENSE $TARGET/ && \
cp -r ../Presets $TARGET/ && \
# todo install deps
# todo readme
COPIED=1
Expand All @@ -35,6 +35,10 @@ echo copying files... && \

cd ${TARGET}

echo "Run the install.sh script to install presets, or move the Presets child folders to ~/Documents/Lumatone Editor/" > INSTALL
echo "You will also need to install the libssh2 dependency." >> INSTALL
echo "Then simply launch 'Lumatone Editor' to get started!" >> INSTALL

ZIP_OUT="LumatoneEditor-${VERSION}-Linux.zip"

zip -r $ZIP_OUT ./* && ZIPPED=1
Expand Down

0 comments on commit 347596b

Please sign in to comment.