This commit is contained in:
Raffu Khondaker 2020-06-10 05:57:46 -04:00
parent 4ea39ae8de
commit 6d7d8d450f
2 changed files with 2 additions and 1 deletions

View File

@ -425,7 +425,7 @@ class Teacher:
student = getDB("http://127.0.0.1:8000/students/" + student) student = getDB("http://127.0.0.1:8000/students/" + student)
command("git clone " + student['repo']) command("git clone " + student['repo'])
os.chdir(cdir) os.chdir(cdir)
shutil.copytree(path, cpath + "/" + student['ion_user']) copy_tree(cpath, path + "/" + student['ion_user'])
command('git branch ' + classes) command('git branch ' + classes)
command('git add .') command('git add .')
command('git commit -m Hello') command('git commit -m Hello')

@ -0,0 +1 @@
Subproject commit 6f2b3806471b68a47db1208cc6b8c5dc37191df8