Skip to content

Commit

Permalink
Merge pull request #25 from izrik/prep-release
Browse files Browse the repository at this point in the history
Prepare for the 0.4 release
  • Loading branch information
izrik committed Sep 6, 2021
2 parents bc900cb + 45965db commit 7797ba9
Show file tree
Hide file tree
Showing 7 changed files with 749 additions and 11 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -96,3 +96,6 @@ ENV/
# misc
_scratch*
.DS_Store

# JS
node_modules/
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM python:3.8.12-alpine3.14

ENV STUART_VERSION=0.3
ENV STUART_VERSION=0.4
LABEL \
Name="stuart" \
Version="$STUART_VERSION" \
Expand Down
23 changes: 23 additions & 0 deletions install-other-deps.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#!/usr/bin/env bash -xe

npm install

if [[ "$(uname)" = "Darwin" ]]; then
brew install shellcheck
elif [[ "$(uname)" = "Linux" ]]; then
if grep -qi centos /etc/os-release ; then
yum install epel-release && yum install ShellCheck
elif grep -qi fedora /etc/os-release ; then
dnf install ShellCheck
elif grep -qi ubuntu /etc/os-release ; then
apt update && apt install shellcheck
elif grep -qi debian /etc/os-release ; then
apt update && apt install shellcheck
else
echo "Unknwon linux distro"
exit 1
fi
else
echo "Unknown operating system"
exit 1
fi
Loading

0 comments on commit 7797ba9

Please sign in to comment.