Skip to content

Commit

Permalink
Use absolute link to screenshot in README
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasberbuer committed Dec 16, 2022
1 parent 7b2e49d commit f43df51
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

Check for updates of your `conanfile.txt` / `conanfile.py` requirements.

![Screenshot](docs/screenshot.png)
![Screenshot](https://github.com/lukasberbuer/conan-check-updates/blob/master/docs/screenshot.png)

## Installation

Expand Down
5 changes: 3 additions & 2 deletions docs/generate_screenshot.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@ then
fi

exe="conan-check-updates"
exe_win="${exe}.exe"

# use windows binary if avaiable (wsl)
if [ -x "$(command -v conan-check-updates.exe)" ]; then
if [ -x "$(command -v $exe_win)" ]; then
echo "Windows executable found"
exe="conan-check-updates.exe"
exe=$exe_win
fi

echo "
Expand Down

0 comments on commit f43df51

Please sign in to comment.