216c58a2ad
The computed path was wrong and references within the file where wrong as well due to the temporary directory.
11 lines
350 B
Bash
Executable file
11 lines
350 B
Bash
Executable file
#!/usr/bin/env nix-shell
|
|
#! nix-shell -p nodePackages.node2nix -i bash
|
|
set -eu -o pipefail
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
|
|
cd ${DIR}
|
|
rm -f ./node-env.nix
|
|
for version in 10 12 13; do
|
|
node2nix --nodejs-$version -i node-packages-v$version.json -o node-packages-v$version.nix -c composition-v$version.nix
|
|
done
|