Skip to content

Commit a0492e4

Browse files
committed
#netpyne-132 refactoring installation script 3
1 parent e72217f commit a0492e4

2 files changed

Lines changed: 206 additions & 212 deletions

File tree

utilities/install.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ def main(netpyne_branch, workspace_branch, geppetto_branch=None, skipNpm=False,
203203
else:
204204
# install jupyter geppetto
205205
cprint("Installing geppetto ui, client and core dependecies")
206-
execute(cmd=['yarn', 'install', '--frozen-lockfile'], cwd=WEBAPP_DIR)
206+
execute(cmd=['yarn', 'install', '--immutable'], cwd=WEBAPP_DIR)
207207
execute(cmd=['yarn', 'run', 'build'], cwd=WEBAPP_DIR)
208208

209209

@@ -236,9 +236,6 @@ def main(netpyne_branch, workspace_branch, geppetto_branch=None, skipNpm=False,
236236
args = parser.parse_args(sys.argv[1:])
237237
print('Install arguments:\n', args)
238238

239-
cprint(args.netpyne_version)
240-
sys.exit()
241-
242239
main(skipNpm=args.skipNpm, skipTest=args.skipTest, development=args.development,
243240
netpyne_branch=args.netpyne_version,
244241
workspace_branch=args.workspace_version,

0 commit comments

Comments
 (0)