1
0
Fork 1
mirror of https://example.com synced 2024-11-22 20:46:39 +09:00

dev: prefix message filename with timestamp

This commit is contained in:
naskya 2024-01-03 07:28:39 +09:00
parent 27aeca9c2d
commit 3a0a2d04f3
Signed by: naskya
GPG key ID: 712D413B3A9FED5C
6 changed files with 11 additions and 0 deletions

7
neko/update/patch.sh Executable file
View file

@ -0,0 +1,7 @@
#!/bin/sh
set -eu
[ ! -f neko/flags/install_pgroonga ] || mv neko/flags/install_pgroonga neko/flags/20231128_install_pgroonga
[ ! -f neko/flags/docker_compose_rename ] || mv neko/flags/docker_compose_rename neko/flags/20231129_docker_compose_rename
[ ! -f neko/flags/temp_upgrade_node_to_v21 ] || mv neko/flags/temp_upgrade_node_to_v21 neko/flags/20231229_upgrade_node_to_v21
[ ! -f neko/flags/add_volume_to_docker_compose ] || mv neko/flags/add_volume_to_docker_compose neko/flags/20240102_add_volume_to_docker_compose

View file

@ -6,6 +6,10 @@ set -eu
say 'Start upgrading Firefish!'
br
# Apply patches
run './neko/update/patch.sh'
br
# Pull changes
## git pull
OLD_COMMIT=$(git rev-parse --short HEAD)