1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-07 06:01:48 +02:00

nix develop: Add a test for bash functions

This commit is contained in:
Eelco Dolstra 2021-07-09 01:17:32 +02:00
parent 9fc7da1e08
commit e50408bd31
2 changed files with 4 additions and 0 deletions

View file

@ -22,6 +22,9 @@ let pkgs = rec {
done
declare -a arr1=(1 2 "3 4" 5)
declare -a arr2=(x $'\n' $'x\ny')
fun() {
echo blabla
}
'';
stdenv = mkDerivation {