Skip to content

Commit

Permalink
remove unnecessary README mde
Browse files Browse the repository at this point in the history
  • Loading branch information
Alessio Coser committed Jan 29, 2020
1 parent 8bf14b6 commit 42b9842
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 70 deletions.
70 changes: 0 additions & 70 deletions README.mde

This file was deleted.

24 changes: 24 additions & 0 deletions scripts/sync_versions.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#!/usr/bin/env sh
TAG=$1
DAIKON_ROOT="$(dirname $0)/.."
SCRIPT_NAME="publish.sh"

exclude_main_daikon() {
cat - | grep -v "./daikon/"
}

extensions_scripts_folders() {
find ${DAIKON_ROOT}/.. -name "${SCRIPT_NAME}" | exclude_main_daikon | sed "s/${SCRIPT_NAME}$//"
}

for folder in $(extensions_scripts_folders)
do
(
cd ${folder}
echo "deploy: $(pwd)"
# git stash
# git pull --rebase
# ./${SCRIPT_NAME} ${TAG}
# git stash pop
)
done

0 comments on commit 42b9842

Please sign in to comment.