caches: Move clean-unused-caches to scripts/lib/.

This commit is contained in:
Tim Abbott
2017-09-25 16:10:11 -07:00
parent ef1242bb62
commit 703b87c116
3 changed files with 3 additions and 3 deletions

View File

@@ -67,7 +67,7 @@ def main():
print("Cleaning orphaned/unused caches...")
# Call 'clean-unused-caches' script to clean any orphaned/unused caches.
subprocess.check_call([os.path.join(ZULIP_PATH, "scripts/clean-unused-caches")] + sys.argv[1:])
subprocess.check_call([os.path.join(ZULIP_PATH, "scripts/lib/clean-unused-caches")] + sys.argv[1:])
print("Done!\n")
if __name__ == "__main__":