Skip to content

Commit de65f14

Browse files
committed
Improvements to local development scripts
1 parent 10fd9e0 commit de65f14

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

development/cleanup.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
#!/usr/bin/env bash
1+
#!/bin/bash
22

33
#goto git root directory
44
git rev-parse && cd "$(git rev-parse --show-cdup)"
55

6-
. development/env.sh
6+
. ./development/env.sh
77

88
"${SQLCLI}" sys/${ORACLE_PWD}@//${CONNECTION_STR} AS SYSDBA <<-SQL
99
set echo on

development/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
#!/usr/bin/env bash
1+
#!/bin/bash
22

33
#goto git root directory
44
git rev-parse && cd "$(git rev-parse --show-cdup)"
55

6-
. development/env.sh
6+
. ./development/env.sh
77

88
header="******************************************************************************************"
99
if ! development/cleanup.sh; then

development/refresh_sources.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
#!/usr/bin/env bash
1+
#!/bin/bash
22

33
#goto git root directory
44
git rev-parse && cd "$(git rev-parse --show-cdup)"
55

6-
. development/env.sh
6+
. ./development/env.sh
77

88
# remove sub-direcotry containing main branch shallow copy
99
rm -rf ${UTPLSQL_DIR:-utPLSQL_latest_release}

development/refresh_ut3.sh

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

33
#goto git root directory
44
git rev-parse && cd "$(git rev-parse --show-cdup)"

development/template.env.sh

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

33
export SQLCLI=sql # For sqlcl client
44
#export SQLCLI=sqlplus # For sqlplus client

0 commit comments

Comments
 (0)