-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add build shell script to generate a "distributable" zip file with th…
…e procedure files
- Loading branch information
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
.idea/ | ||
|
||
*.zip | ||
|
||
# Avoid including Experiment files | ||
*.pxp | ||
*.pxt | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/usr/bin/env sh | ||
|
||
# Builds a zip archive including all the necessary files to run this software in Igor. | ||
# | ||
# The desired zip file name can be passed as an argument, otherwise a default name will be used. | ||
|
||
|
||
zipfilename="afm-forcecurve-analysis.zip" | ||
|
||
|
||
case "$1" in | ||
-h | --help | -\?) | ||
echo "Usage: `basename $0` [zipfilename]" | ||
exit | ||
;; | ||
?*) | ||
zipfilename="$1" | ||
;; | ||
esac | ||
|
||
zip -rFS "$zipfilename" config lib forcecurve-analysis.ipf LICENSE README.md | ||
|