mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
d97a107426
* nixos-version: fix syntax error * nixos-version: add -h parameter
15 lines
199 B
Bash
15 lines
199 B
Bash
#! @shell@
|
|
|
|
case "$1" in
|
|
-h|--help)
|
|
exec man nixos-version
|
|
exit 1
|
|
;;
|
|
--hash|--revision)
|
|
echo "@nixosRevision@"
|
|
;;
|
|
*)
|
|
echo "@nixosVersion@ (@nixosCodeName@)"
|
|
;;
|
|
esac
|