Skip to content
Snippets Groups Projects
Commit 6168da14 authored by Armand Bahi's avatar Armand Bahi
Browse files

Suppression pull_submodules/push_submodules

inutiles depuis utilisation avec GitKranken
parent 2feeecba
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
#
#
# Récupère les modifications des modules sur l'application
#
#
if [ `whoami` == "root" ]; then
echo "Please, do not run this script as sudo"
else
(cd utils/; ./pull_submodules.sh)
fi
#!/bin/bash
#
#
# Envoie les modifications de l'application sur les modules
#
#
if [ `whoami` == "root" ]; then
echo "Please, do not run this script as sudo"
else
(cd utils/; ./push_submodules.sh)
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment