7 lines
119 B
Bash
Executable file
7 lines
119 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
VERSION="$(date +%Y-%m-%d)"
|
|
sed -r "s/version = \".+\";/version = \"$VERSION\";/g" -i default.nix
|
|
|