Skip to content
This repository has been archived by the owner on May 31, 2024. It is now read-only.

Commit

Permalink
fix: add ci tools
Browse files Browse the repository at this point in the history
  • Loading branch information
mosoriob committed Apr 28, 2021
1 parent 29db979 commit ab31486
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .ci/update_version.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/bash

if [ $# -ne 1 ]
then
echo "No arguments supplied"
fi

version=${1}

cat > src/mic/__init__.py <<EOF
# -*- coding: utf-8 -*-
__version__ = "${version}"
EOF

0 comments on commit ab31486

Please sign in to comment.