Skip to content

Commit

Permalink
adjusted scripts for commit and install
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexPatrie committed Jan 8, 2024
1 parent c2cbd67 commit befcc47
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion biosimulator_processes/tests/test_tellurium.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def test_process():

# gather results
results = workflow.gather_results()
print(f'RESULTS: {results}')
print(f'RESULTS: {pf(results)}')


# def test_process_with_database_emitter():
Expand Down
5 changes: 4 additions & 1 deletion scripts/commit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,7 @@

# This is a helper script for active development

git add --all && echo "enter your commit message: " && read msg && git commit -m "$msg" && git push
git add --all \
&& echo "enter your commit message: " \
&& read -r msg \
&& git commit -m "$msg" && git push
4 changes: 2 additions & 2 deletions scripts/install-with-smoldyn-for-mac-intel.sh
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
#!/bin/bash

# The following script serves as a utility for installing this repository with the Smoldyn requirement on a Intel Mac
# The following script serves as a utility for installing this repository with the Smoldyn requirement on an Intel Mac

set -e

# set installation parameters
dist_url=https://www.smoldyn.org/smoldyn-2.72-mac-Intel.tgz
tarball_name=smoldyn-2.72-mac.tgz
tarball_name=${dist_url##*/}
dist_dir=${tarball_name%.tgz}

# uninstall existing version
Expand Down

0 comments on commit befcc47

Please sign in to comment.