We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 540ddb2 commit 7f87d2eCopy full SHA for 7f87d2e
2 files changed
presets/ghost/target/root/first_boot_install.sh
@@ -73,7 +73,7 @@ done
73
74
# Desktop entries
75
rm -rf /usr/local/share/*
76
-pushd /usr/share/applications
+pushd /usr/share/applications || exit 1
77
rm -rf *
78
79
printf '[Desktop Entry]
@@ -149,11 +149,12 @@ mkdir -p /home/code/src/
149
chown code:code /home/code/src/
150
chmod g+rwXs /home/code/src/
151
ln -s /home/code/src/solcloud/dev-stack/bin/dev-stack-remote.sh /usr/bin/dev
152
+[ -x /bin/pacman ] && (cp libcrypt.a /lib/ && chmod o+r /lib/libcrypt.a)
153
154
rm -rf /lib/udev/rules.d/
155
rm -f /lib/udev/*.sh
-pushd /etc/udev/rules.d/
156
-rm $(grep -l '# Intentionally empty' * | xargs)
+pushd /etc/udev/rules.d/ || exit 1
157
+ rm $(grep -l '# Intentionally empty' * | xargs)
158
popd
159
160
echo "New password for daniel"
presets/ghost/target/root/libcrypt.a
259 KB
0 commit comments