summary refs log tree commit diff stats
path: root/scripts/deployed.sh
blob: e5ca0389393ae8f4812ab2238ed126a76becf806 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env sh

version="$(nix eval --file ./version.nix)"

cat >./version.nix <<EOF
# NOTE: Change this _EVERY_ time you actually use a new keymap. <2024-12-29>
$((version + 1))
EOF

cp ./result/binary_output/zsa_moonlander_* deploys/

# vim: ft=sh