Skip to content

Commit

Permalink
Merge pull request devttys0#38 from eacmen/patch-1
Browse files Browse the repository at this point in the history
Update build.sh
  • Loading branch information
eacmen authored Mar 25, 2021
2 parents 3e0cc40 + 82fb587 commit bd864a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/bin/sh
#!/bin/bash
# Script to download squashfs-tools v4.3, apply the patches, perform a clean build, and install.

# If not root, perform 'make install' with sudo
if [ "$UID" = "0" ]
if [ $UID -eq 0 ]
then
SUDO=""
else
Expand Down

0 comments on commit bd864a1

Please sign in to comment.