Skip to content

Commit

Permalink
Merge pull request #17 from prabathbr/master
Browse files Browse the repository at this point in the history
Fixed Data and Fruitcake paths from Develop branch
  • Loading branch information
txusser authored Aug 24, 2023
2 parents 1b1119c + 42108f4 commit 3ae1b62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,15 +231,15 @@ def verify_stir_install(stir_dir):

def download_resources(dest_dir):
print('Downloading resources from Onedrive...')
icom = 'sshpass -p simpet_dummy sftp -P 49166 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null simpet_install@mibiolab.synology.me:SIMPET/simpet_resources/Data.zip'
icom = 'wget https://github.com/txusser/simpet/raw/develop/assets/Data.zip'
rsystem(icom)
icom = 'unzip -o Data.zip'
rsystem(icom)

if exists('Data.zip'):
os.remove('Data.zip')

icom = 'sshpass -p simpet_dummy sftp -P 49166 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null simpet_install@mibiolab.synology.me:SIMPET/simpet_resources/fruitcake.zip'
icom = 'wget https://github.com/txusser/simpet/raw/develop/assets/fruitcake.zip'
rsystem(icom)
icom = 'unzip -o fruitcake.zip'
rsystem(icom)
Expand Down

0 comments on commit 3ae1b62

Please sign in to comment.