Skip to content
Snippets Groups Projects
Commit 4d601671 authored by Igor Witz's avatar Igor Witz
Browse files

Add new file

parent d117af2f
No related branches found
No related tags found
1 merge request!22Ajout de la CI pour Etherpad et Dokuwiki
#!/bin/sh
# retrieve the name of the image that was modified in the latest commit
# this script should become obsolete as soon as a proper way of getting the modified files is added to Gitlab CI
RES=""
for i in $(git diff-tree --no-commit-id --name-only $CI_COMMIT_SHA); do
if [[ $i == *"pica"* ]]; then
RES=$i
fi
done
echo $RES
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