Merge pull request #151 from BigweldIndustries/patch-1

Close files after use for setup script
This commit is contained in:
Erkin Alp Güney
2022-04-09 14:29:36 +03:00
committed by GitHub
+5 -3
View File
@@ -1,6 +1,6 @@
# script to:
# - get all repo git urls from the fosscord orga and format them to make the process of updating the setup script less tiresome
# - create a workspace file for VScode
# Script to:
# - Get all repo git urls from the fosscord orga and format them to make the process of updating the setup script less tiresome
# - Create a workspace file for VScode
import requests
@@ -17,6 +17,8 @@ for repo in response:
with open("clone_all_repos.sh","w") as f:
f.write(repos)
f.close()
with open("fosscord.code-workspace", "w") as f:
f.write(str(workspace).replace("'",'"'))
f.close()