mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
c6290e42bc
* Fix the substitutes tests.
10 lines
114 B
Bash
Executable file
10 lines
114 B
Bash
Executable file
#! /bin/sh -ex
|
|
echo $*
|
|
|
|
case $* in
|
|
*)
|
|
mkdir $1
|
|
echo $3 $4 > $1/hello
|
|
;;
|
|
esac
|
|
|