diff options
Diffstat (limited to 'build/vue-builds.sh')
-rwxr-xr-x | build/vue-builds.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build/vue-builds.sh b/build/vue-builds.sh index 39331e92270..1a5bef8a648 100755 --- a/build/vue-builds.sh +++ b/build/vue-builds.sh @@ -14,6 +14,7 @@ do cp $entryFile $backupFile # Make the app + set -e cd "$path/../" make @@ -25,7 +26,7 @@ do if ! diff -q $entryFile $backupFile &>/dev/null then echo "$entryFile build is NOT up-to-date! Please send the proper production build within the pull request" - cat /root/.npm/_logs/*.log + cat $HOME/.npm/_logs/*.log exit 2 else echo "$entryFile build is up-to-date" |