diff options
author | davidovski <david@davidovski.xyz> | 2022-02-02 23:06:47 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-02-02 23:06:47 +0000 |
commit | 5f6bd1078b20823e7382ade77e34d65e9c365772 (patch) | |
tree | 1097f55cf8af25525927fa9107edf8bd7e988ad7 /repo/util/bash.xibuild | |
parent | cef8b1f4e5926f94c999dbf370702c4952353175 (diff) |
made rust compile correctly for js78 to work
Diffstat (limited to 'repo/util/bash.xibuild')
-rw-r--r-- | repo/util/bash.xibuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/repo/util/bash.xibuild b/repo/util/bash.xibuild index 051379f..8b02e5a 100644 --- a/repo/util/bash.xibuild +++ b/repo/util/bash.xibuild @@ -18,5 +18,5 @@ package () { } postinstall () { - echo "/bin/bash" >> /etc/shells + grep -q "bash" /etc/shells || echo "/bin/bash" >> /etc/shells } |