Fix function syntax

pull/289/head
Brent Souza 10 months ago committed by GitHub
parent 646adbcc51
commit 0361847bbd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -2,17 +2,17 @@
BOLD='\033[0;1m' BOLD='\033[0;1m'
func not_configured(){ not_configured(){
type=$1 type=$1
echo "🤔 no $type repository is set, skipping $type configuration." echo "🤔 no $type repository is set, skipping $type configuration."
echo "You can configure a $type repository by providing a key for '$type' in the 'package_managers' input." echo "You can configure a $type repository by providing a key for '$type' in the 'package_managers' input."
} }
func done(){ config_complete(){
echo "🥳 Configuration complete!" echo "🥳 Configuration complete!"
} }
func register_docker(){ register_docker(){
repo=$1 repo=$1
echo -n "${ARTIFACTORY_ACCESS_TOKEN}" | docker login "$repo" --username ${ARTIFACTORY_USERNAME} --password-stdin echo -n "${ARTIFACTORY_ACCESS_TOKEN}" | docker login "$repo" --username ${ARTIFACTORY_USERNAME} --password-stdin
} }
@ -42,7 +42,7 @@ else
cat << EOF > ~/.npmrc cat << EOF > ~/.npmrc
${NPMRC} ${NPMRC}
EOF EOF
echo "🥳 Configuration complete!" config_complete
fi fi
# Configure the `pip` to use the Artifactory "python" repository. # Configure the `pip` to use the Artifactory "python" repository.
@ -55,7 +55,7 @@ else
cat << EOF > ~/.pip/pip.conf cat << EOF > ~/.pip/pip.conf
${PIP_CONF} ${PIP_CONF}
EOF EOF
echo "🥳 Configuration complete!" config_complete
fi fi
# Configure Artifactory "go" repository. # Configure Artifactory "go" repository.
@ -64,7 +64,7 @@ if [ -z "${HAS_GO}" ]; then
else else
echo "🐹 Configuring go..." echo "🐹 Configuring go..."
jf goc --global --repo-resolve "${REPOSITORY_GO}" jf goc --global --repo-resolve "${REPOSITORY_GO}"
echo "🥳 Configuration complete!" config_complete
fi fi
# Configure the JFrog CLI to use the Artifactory "docker" repository. # Configure the JFrog CLI to use the Artifactory "docker" repository.

Loading…
Cancel
Save