Skip to content

Commit

Permalink
Prep work to release under GPL
Browse files Browse the repository at this point in the history
  • Loading branch information
mlgupta committed Oct 5, 2020
1 parent 2fe92f7 commit 3f6f9c3
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .release
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
release=0.1.3
tag=0.1.3
release=0.1.4
tag=0.1.4
24 changes: 14 additions & 10 deletions modules/build_builder.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,23 @@
# #
#############################################################################
# Build Vue frontend app
cd /container/keyper-fe
rm -rf .git .gitignore
npm install
npm run build
if [ -f /container/keyper-fe/package.json ]; then
cd /container/keyper-fe
rm -rf .git .gitignore
npm install
npm run build

status=$?
status=$?

if [ $status -eq 0 ]; then
mv dist /var/www/keyper-fe
if [ $status -eq 0 ]; then
mv dist /var/www/keyper-fe
else
echo "##########################################################"
echo "Error building keyper-fe"
echo "##########################################################"
fi
else
echo "##########################################################"
echo "Error building keyper-fe"
echo "##########################################################"
touch /var/www/keyper-fe
fi

# Build and install flask modules/libraries
Expand Down

0 comments on commit 3f6f9c3

Please sign in to comment.