Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jordimas committed Feb 20, 2024
1 parent 4ca5cd3 commit f44586d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
2 changes: 2 additions & 0 deletions deployment/generate-quality.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#!/bin/bash
set -e # Exit immediately if a command exits with a non-zero status

echo Generate Quality
root="$1"
lt_output=$root/tm-git/src/output/quality
Expand Down
2 changes: 2 additions & 0 deletions deployment/generate-terminology.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#!/bin/bash
set -e # Exit immediately if a command exits with a non-zero status

echo Generate terminology
if [ "$#" -ne 1 ] ; then
echo "Usage: generate-terminology.sh ROOT_DIRECTORY_OF_BUILD_LOCATION"
Expand Down
2 changes: 2 additions & 0 deletions deployment/generate-tm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ copy_successfully_downloaded_files() {
done
}

set -e # Exit immediately if a command exits with a non-zero status

echo Generate memories
if [ "$#" -ne 2 ] ; then
echo "Usage: generate-tm.sh ROOT_DIRECTORY_OF_BUILD_LOCATION PUBLIC_DATA"
Expand Down
5 changes: 3 additions & 2 deletions docker/entry-point-builder.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
set -e # Exit immediately if a command exits with a non-zero status

#!/bin/bash
DIR="$1" # root /srv/dev
DIR_TMT_GIT="$2" # /srv/dev/tm-git - working directory
PUBLISH_WEBDOCKER=/srv/web-docker
PRESERVE_CROSSEXECS=/srv/tmt-files

set -e # Exit immediately if a command exits with a non-zero status


ls $PRESERVE_CROSSEXECS

# Copy cross execs
Expand Down

0 comments on commit f44586d

Please sign in to comment.