diff options
author | root <root@localhost> | 2013-02-10 23:06:09 -0300 |
---|---|---|
committer | root <root@localhost> | 2013-02-10 23:06:09 -0300 |
commit | 56356a83158c00782e59e896ebfac6a5cbb51a82 (patch) | |
tree | b5caefaccaaae68e8191aa656514d1d70c4009a7 | |
parent | 4d1f2999f16d90e58f09fc7031dcd1d751cc461a (diff) | |
download | git-remote-gcrypt-56356a83158c00782e59e896ebfac6a5cbb51a82.zip git-remote-gcrypt-56356a83158c00782e59e896ebfac6a5cbb51a82.tar.gz git-remote-gcrypt-56356a83158c00782e59e896ebfac6a5cbb51a82.tar.bz2 |
Minicleanup in do_push
-rwxr-xr-x | git-remote-gcrypt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/git-remote-gcrypt b/git-remote-gcrypt index dc05f18..8dfa4c7 100755 --- a/git-remote-gcrypt +++ b/git-remote-gcrypt @@ -733,12 +733,14 @@ EOF then PUT "$URL" "$pack_id" "$TmpPack_Encrypted" fi - rm -f "$TmpPack_Encrypted" - rm -f "$TmpObjlist" # Upload manifest PUT "$URL" "$Manifestfile" "$TmpManifest_Enc" + rm -f "$TmpPack_Encrypted" + rm -f "$TmpObjlist" + rm -f "$TmpManifest_Enc" + # Delete packs if isnonnull "$pack_delete"; then REMOVE "$URL" "$(xecho "$pack_delete" | while read packline_ @@ -751,8 +753,6 @@ EOF PUT_FINAL "$URL" - rm -f "$TmpManifest_Enc" - # ok all updates xecho "$1" | while read line_ do |