Skip to content

Commit 3a3fc3b

Browse files
committed
test - try using bash by default
Signed-off-by: Trevor James Smith <10819524+Zeitsperre@users.noreply.github.com>
1 parent db20d18 commit 3a3fc3b

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

default_build_params

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/bin/bash
22

33
if [ -z "$TEST_PAVICS_SDI_REPO" ]; then
44
TEST_PAVICS_SDI_REPO=true

downloadrepos

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/bin/bash
22
# This file can be used both as executable script or library to be sourced.
33
# To use as library to be sourced, set DOWNLOADREPOS_AS_LIB=1 env var.
44

launchcontainer

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh -x
1+
#!/bin/bash -x
22

33
if [ -z "$DOCKER_IMAGE" ]; then
44
DOCKER_IMAGE="pavics/workflow-tests:py312-260324"

launchnotebook

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh -x
1+
#!/bin/bash -x
22

33
PORT="$1"
44

notebooktoken

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
#!/bin/sh -x
1+
#!/bin/bash -x
22

33
docker exec -it birdy-notebook su jenkins -s /bin/bash -c 'jupyter lab list'

releasedocker

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh -x
1+
#!/bin/bash -x
22

33
OLD_VER="$1"; shift
44
NEW_VER="$1"; shift

runtest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/bin/bash
22

33
# Load shared functions, make available to CONFIG_OVERRIDE_SCRIPT_URL.
44
DOWNLOADREPOS_AS_LIB=1

testall

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/bin/bash
22

33
. ./default_build_params
44

0 commit comments

Comments
 (0)