diff options
author | cos <cos> | 2023-10-15 16:35:39 +0200 |
---|---|---|
committer | cos <cos> | 2023-10-15 16:37:00 +0200 |
commit | 30b064a0d8951f3e14fa00cd5b06c0e4e58488d4 (patch) | |
tree | 2c3c42441586381c9f9e7db8038dd0a14f0f3333 | |
parent | 52d65276a47e24e51ee0de179f540df740f5d08c (diff) | |
download | vim-preseed-30b064a0d8951f3e14fa00cd5b06c0e4e58488d4.zip |
Fix addition of snapshot file to archive
-rw-r--r-- | RELEASE.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -14,9 +14,9 @@ generated from. The process is as follows: wget "$_base/$_repo/snapshot/$_repo-main.zip" 7zz rn "$_repo-main.zip" "$_repo-main" "$_name" mv "$_repo-main.zip" "$_name-$_c_no.zip" - echo "export of commit $_c_no ($_hash) from $_base/$_repo. $_date." \ + echo "Export of commit $_c_no ($_hash) from $_base/$_repo. $_date." \ > "snapshot-$_hash.txt" - 7zz a "$_name.zip" "snapshot-$_hash.txt" + 7zz a "$_name-$_c_no.zip" "snapshot-$_hash.txt" unset _base _repo _name _hash _init _c_no _date [vimorg]: https://www.vim.org/scripts/ |