Use mastodon_full_path variable

This commit is contained in:
spla 2020-03-05 12:05:51 +01:00
pare c7b6d74a32
commit 9924a33d2d
S'han modificat 1 arxius amb 1 adicions i 1 eliminacions

Veure arxiu

@ -36,7 +36,7 @@ def delete_inactives(mailing_db, mailing_db_user, mailing_db_table, query, id_ar
print("\n")
print("Deleting user " + str(i) + " of " + str(len(id_array)) + " users")
print("Deleting user with id " + str(id_array[i]) + ", username: " + username_array[i])
os.system("RAILS_ENV=production " + rvm_ruby + " " + mastodon_full_path + "bin/tootctl accounts delete " + username_array[i])
os.system("RAILS_ENV=production " + rvm_ruby + " " + mastodon_full_path + "/bin/tootctl accounts delete " + username_array[i])
delete_user(id_array[i], username_array[i])
i += 1