-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,15 +38,15 @@ echo "GIT_HASH = ${GIT_HASH}" | |
echo "Will install npm and global packages" | ||
yum update | ||
yum install -y npm zip | ||
npm install -g --unsafe-perm=true --allow-root [email protected] | ||
npm install -g --unsafe-perm=true --allow-root uglify-js | ||
npm install -g --unsafe-perm=true --allow-root uglifycss | ||
npm install -g --unsafe-perm=true --allow-root cmake-js | ||
npm install -g [email protected] | ||
npm install -g uglify-js | ||
npm install -g uglifycss | ||
npm install -g cmake-js | ||
|
||
echo "Will install local npm packages" | ||
npm install --save-dev node-addon-api --arch=x64 | ||
npm install electron --arch=x64 | ||
npm install --save-dev --unsafe-perm=true --allow-root electron-packager | ||
npm install --save-dev electron-packager | ||
|
||
echo "CWD" | ||
pwd | ||
|
@@ -83,7 +83,7 @@ else | |
echo "There was no app directory in cwd" | ||
fi | ||
|
||
echo "Will try to copy app dir from ${CmakeBuildDir} to $(cwd)." | ||
echo "Will try to copy app dir from ${CmakeBuildDir} to $(pwd)." | ||
cp -r "${CmakeBuildDir}/app" "${WorkingDir}/" | ||
echo "Have copied app dir from ${CmakeBuildDir} to ${WorkingDir}/." | ||
|
||
|