Use bash strict mode for login

This commit is contained in:
Tobias Happ 2019-12-02 18:47:02 +01:00 committed by Alexander Sosedkin
parent 90e5fb2f49
commit 4814fca275
2 changed files with 4 additions and 4 deletions

View file

@ -10,7 +10,7 @@ in
writeText "login-inner" '' writeText "login-inner" ''
# This file is generated by nix-on-droid. DO NOT EDIT. # This file is generated by nix-on-droid. DO NOT EDIT.
set -e set -eu -o pipefail
[ "$#" -gt 0 ] || echo "Welcome to Nix-on-Droid!" [ "$#" -gt 0 ] || echo "Welcome to Nix-on-Droid!"
@ -49,13 +49,13 @@ writeText "login-inner" ''
echo echo
echo "Congratulations! Now you have Nix installed with some default packages like bashInteractive, \ echo "Congratulations! Now you have Nix installed with some default packages like bashInteractive, \
coreutils, cacert and most important nix-on-droid itself to manage local configuration, see" coreutils, cacert and most important nix-on-droid itself to manage local configuration, see"
echo " nix-on-droid help" echo " nix-on-droid help"
echo "or in the config file" echo "or in the config file"
echo " ~/.config/nixpkgs/nix-on-droid.nix" echo " ~/.config/nixpkgs/nix-on-droid.nix"
echo echo
echo "You can go for the bare nix-on-droid setup or you can configure your phone via home-manager. See \ echo "You can go for the bare nix-on-droid setup or you can configure your phone via home-manager. See \
config file for further information." config file for further information."
echo echo
fi fi
''} ''}

View file

@ -10,7 +10,7 @@ in
writeScript "login" '' writeScript "login" ''
#!/system/bin/sh #!/system/bin/sh
# This file is generated by nix-on-droid. DO NOT EDIT. # This file is generated by nix-on-droid. DO NOT EDIT.
set -e set -eu -o pipefail
export USER="${config.user.userName}" export USER="${config.user.userName}"
export PROOT_TMP_DIR=${installationDir}/tmp export PROOT_TMP_DIR=${installationDir}/tmp