Skip to content

Commit

Permalink
Merge pull request #314 from Qovery/fix/install_issue
Browse files Browse the repository at this point in the history
Fix/install issue
  • Loading branch information
deimosfr committed Jun 18, 2024
2 parents 539f0c0 + 4d5ed4e commit 447f8f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/demo_scripts/create_qovery_demo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ install_deps() {
try_install_missing_deps
fi

if grep -qi microsoft /proc/version; then
if test -f /proc/version && grep -qi microsoft /proc/version; then
if which ip >/dev/null; then
echo "iproute already installed"
else
Expand Down
2 changes: 1 addition & 1 deletion pkg/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
)

func GetCurrentVersion() string {
return "0.94.12" // ci-version-check
return "0.94.13" // ci-version-check
}

func GetLatestOnlineVersionUrl() (string, error) {
Expand Down

0 comments on commit 447f8f5

Please sign in to comment.