Skip to content
This repository has been archived by the owner on Nov 25, 2024. It is now read-only.

Commit

Permalink
Remove preinstall script and test prebuild/prebuild-install#137
Browse files Browse the repository at this point in the history
Signed-off-by: Timothy Johnson <[email protected]>
  • Loading branch information
t1m0thyj committed Apr 5, 2021
1 parent b665bde commit a04fb01
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 45 deletions.
2 changes: 1 addition & 1 deletion jenkins/bundleKeytar.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ chmod +x ./jq
curl -fs https://$githubAuthHeader@api.github.com/repos/atom/node-keytar/releases/tags/v$keytarVersion |
./jq -c '.assets[] | select (.name | contains("node"))' |
./jq -cr 'select (.browser_download_url) | .browser_download_url' |
while read -r bdu; do curl -fsL -o `echo -n $(echo -n $bdu | md5sum | cut -c1-6)'-'$(basename $bdu)` $bdu; done
while read -r bdu; do curl -fsL $bdu; done

rm ./jq
cd ..
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
"watch": "tsc --pretty --watch",
"watch:test": "jest --watch",
"installPlugin": "npm install && npm run clean && npm run build && zowe plugins install .",
"preinstall": "node scripts/preinstall.js",
"postinstall": "zowe config set CredentialManager @zowe/secure-credential-store-for-zowe-cli && echo \"The Secure Credential Store has been successfully installed. The CLI will now use the Node Keytar module to encrypt your local credentials. CLI Profiles that you have created will need to be updated because their credentials are stored in plain text and not accessible from the credential manager. Refer to the available options in the help text to update profiles 'zowe scs update -h'.\" 1>&2",
"preuninstall": "zowe config reset CredentialManager",
"postuninstall": "echo \"CLI Profiles that you have created will need to be recreated because their credentials are stored in the credential manager that has been uninstalled. Refer to the available options in the help text to create a new profile 'zowe profiles create zosmf-profile -h'.\" 1>&2"
Expand Down
43 changes: 0 additions & 43 deletions scripts/preinstall.js

This file was deleted.

0 comments on commit a04fb01

Please sign in to comment.