File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -89,12 +89,12 @@ jobs:
89
89
90
90
# See: https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu2004-README.md#mysql
91
91
run : |
92
- if [ "${DB_ADAPTER}" = "mysql2" ] || [ "${DB_ADAPTER}" = "trilogy" ]; then
92
+ if [[ "${DB_ADAPTER}" == "mysql2" ]] || [[ "${DB_ADAPTER}" == "trilogy" ] ]; then
93
93
sudo systemctl start mysql.service
94
94
mysql -u root -proot -e 'create database ajax_datatables_rails;'
95
95
fi
96
96
97
- if [ "${DB_ADAPTER}" = "oracle_enhanced" ]; then
97
+ if [[ "${DB_ADAPTER}" == "oracle_enhanced" ] ]; then
98
98
./spec/install_oracle.sh
99
99
# Fix error : libnnz11.so: cannot open shared object file: No such file or directory
100
100
sudo ln -s ${ORACLE_HOME}/lib/libnnz11.so /usr/lib/libnnz11.so
You can’t perform that action at this time.
0 commit comments