Skip to content

Commit b4cc362

Browse files
committed
fix: Fixed warnings on linux install. Bumped oclif version.
1 parent 2c57de7 commit b4cc362

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
"eslint-config-prettier": "^9.0.0",
6868
"ink-testing-library": "^4.0.0",
6969
"memfs": "^4.14.0",
70-
"oclif": "^4.15.29",
70+
"oclif": "^4.22.81",
7171
"react-devtools-core": "4.28.5",
7272
"shx": "^0.3.3",
7373
"strip-ansi": "^7.1.0",
@@ -143,7 +143,7 @@
143143
"start:vm": "npm run build && npm run pack:macos && npm run start:vm",
144144
"deploy": "npm run pkg && npm run notarize && npm run upload"
145145
},
146-
"version": "1.0.0-beta5",
146+
"version": "1.0.0-beta6",
147147
"bugs": "https://github.com/codifycli/codify/issues",
148148
"keywords": [
149149
"oclif",

scripts/install-beta.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@
5656
fi
5757
echo "Installing CLI from \$URL"
5858
if [ \$(command -v curl) ]; then
59-
curl "\$URL" | tar "\$TAR_ARGS"
59+
curl "\$URL" | tar "\$TAR_ARGS" --warning=no-unknown-keyword
6060
else
61-
wget -O- "\$URL" | tar "\$TAR_ARGS"
61+
wget -O- "\$URL" | tar "\$TAR_ARGS" --warning=no-unknown-keyword
6262
fi
6363
# delete old codify bin if exists
6464
rm -f \$(command -v codify) || true

0 commit comments

Comments
 (0)