Skip to content

Commit

Permalink
support /bin/sh as Dash
Browse files Browse the repository at this point in the history
  • Loading branch information
JtMotoX committed Nov 29, 2024
1 parent 2f9b795 commit dfb8d5e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/bootstrap-dev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ if true; then
export LANG=en_US.UTF-8
export PATH="/usr/bin:/bin:/usr/sbin:/sbin:$PATH"

if ! curl --no-progress-meter file:/// &>/dev/null; then
if ! curl --no-progress-meter file:/// >/dev/null 2>&1; then
echo "Your version of cURL is too old. This usually means your macOS is very out"
echo "of date. Installing Asahi Linux requires at least macOS version 13.5."
exit 1
Expand Down
2 changes: 1 addition & 1 deletion scripts/bootstrap-prod.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ if true; then
export LANG=en_US.UTF-8
export PATH="/usr/bin:/bin:/usr/sbin:/sbin:$PATH"

if ! curl --no-progress-meter file:/// &>/dev/null; then
if ! curl --no-progress-meter file:/// >/dev/null 2>&1; then
echo "Your version of cURL is too old. This usually means your macOS is very out"
echo "of date. Installing Asahi Linux requires at least macOS version 13.5."
exit 1
Expand Down
2 changes: 1 addition & 1 deletion scripts/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ if true; then
export LANG=en_US.UTF-8
export PATH="/usr/bin:/bin:/usr/sbin:/sbin:$PATH"

if ! curl --no-progress-meter file:/// &>/dev/null; then
if ! curl --no-progress-meter file:/// >/dev/null 2>&1; then
echo "Your version of cURL is too old. This usually means your macOS is very out"
echo "of date. Installing Asahi Linux requires at least macOS version 13.5."
exit 1
Expand Down

0 comments on commit dfb8d5e

Please sign in to comment.