diff options
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-12-29 13:31:33 -0800 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-12-29 13:31:33 -0800 |
commit | 830f8f87e1ede09a8c827c1a93aa4ed5db66f0b6 (patch) | |
tree | fdbc4c1255184690d7ff46843554ebb2b30a44d1 /db-update | |
parent | 81efd3d8cd39d07930b18dcd8f904153500bfbf3 (diff) |
Remove an if check for old staging 'add' dirs
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'db-update')
-rwxr-xr-x | db-update | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -95,9 +95,7 @@ if [ -d "${stagedir}/add" ]; then echo "Please delete staging/<reponame>/{add,del}" echo " and ensure you are using the newest devtools" echo "--------------------------------------------------" - if [ -e "${stagedir}/add/"* ]; then - /bin/mv "${stagedir}/add/"* "$stagedir/" - fi + /bin/mv "${stagedir}/add/"* "$stagedir/" fi to_add="" |