We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2491f80 commit 35c62b6Copy full SHA for 35c62b6
valet
@@ -78,9 +78,9 @@ then
78
# Fetch Ngrok URL In Background...
79
bash "$DIR/cli/scripts/fetch-share-url.sh" "$HOST" &
80
81
- arch = $(uname -m)
+ ARCH=$(uname -m)
82
83
- if [[ $arch == 'arm64' ]]; then
+ if [[ $ARCH == 'arm64' ]]; then
84
sudo -u "$USER" "$DIR/bin/ngrok-arm" http "$HOST.$TLD:$PORT" -host-header=rewrite $PARAMS
85
else
86
sudo -u "$USER" "$DIR/bin/ngrok" http "$HOST.$TLD:$PORT" -host-header=rewrite $PARAMS
0 commit comments