summaryrefslogtreecommitdiff
path: root/run-all
diff options
context:
space:
mode:
Diffstat (limited to 'run-all')
-rwxr-xr-xrun-all3
1 files changed, 2 insertions, 1 deletions
diff --git a/run-all b/run-all
index 8df0007..5a817ee 100755
--- a/run-all
+++ b/run-all
@@ -55,7 +55,8 @@ try:
for fname in sorted(os.listdir(migration_dir)):
migration_fpath = os.path.join(migration_dir, fname)
if is_executable(migration_fpath):
- if not os.path.samefile(migration_fpath, __file__):
+ if not os.path.samefile(migration_fpath, __file__) and \
+ fname != 'indent':
migrations_found += 1
sys.stdout.write(migration_fpath + ":\n")
subprocess.check_call(