Skip to content

Commit

Permalink
New directory structure
Browse files Browse the repository at this point in the history
  • Loading branch information
ampinzonv committed Oct 17, 2020
1 parent d1dacd7 commit 00e5967
Show file tree
Hide file tree
Showing 9 changed files with 7 additions and 90 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion source/installbiobash → installbiobash
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ if [ -d "$installDir" ];then
if [ -w "$installDir" ];then

echo "Installing to: $installDir"
cp *bb_* $installDir
cp ./source/*bb_* $installDir
echo "Installation complete. Thank you for installing BIOBASH
"
Expand Down
18 changes: 0 additions & 18 deletions release/installbiobash

This file was deleted.

8 changes: 0 additions & 8 deletions source/INSTALL

This file was deleted.

20 changes: 0 additions & 20 deletions source/LICENSE

This file was deleted.

38 changes: 0 additions & 38 deletions source/README.md

This file was deleted.

11 changes: 6 additions & 5 deletions source/create_release
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ echo -en "#!/bin/bash
# Released on: $DATE
" > version.inc

#Put header to all scripts
#Put header to all scripts and rename new files, so
# we move Release Files, not source files.
for i in $(ls *bb_*);do cat version.inc $i > RL_$i;done

#cleaning up!
Expand All @@ -25,9 +26,9 @@ rm version.inc
#perform tests

#move release
rm ../release/*
rm ../release/*bb_*

# Necessary so we do not erase source files
mv *RL_* ../release/
rename 's/RL_//' ../release/*
cp installbiobash ../release/
chmod +x ../release/*
cp INSTALL LICENSE README.md ../release/
chmod +x ../release/*bb_*

0 comments on commit 00e5967

Please sign in to comment.