1
0
Fork 0
mirror of synced 2024-09-15 08:47:37 +12:00
budibase/packages/server/scripts/integrations/oracle/instantclient/linux/install.sh

9 lines
196 B
Bash
Executable file

#!/bin/bash
if [[ $TARGETARCH == arm* ]] ;
then
echo "Installing ARM Oracle instant client..."
arm64/install.sh
else
echo "Installing x86-64 Oracle instant client..."
x86-64/install.sh
fi