Skip to content

Commit

Permalink
Fix directory to use user folder instead of static folder
Browse files Browse the repository at this point in the history
  • Loading branch information
KoT17 committed May 8, 2024
1 parent 2d804d4 commit 4612ba3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Astronomy/sdss_mosaics/SDSS_today.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,10 @@
"band = \"g\"\n",
"workdir = \"M51g\"\n",
"\n",
"workdir = \"/home/idies/workspace/Temporary/raddick/montage_temp/\" + workdir + '/'"
"# Use user storage\n",
"# TODO: Test on SciServer to make sure folder is accessible\n",
"myUserName = Authentication.getKeystoneUserWithToken(Authentication.getToken()).userName\n",
"workdir = \"/home/idies/workspace/Storage/\" + myUserName + \"/persistent/montage_temp/\" + workdir + '/'"
]
},
{
Expand Down

0 comments on commit 4612ba3

Please sign in to comment.