Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Older windows support branch #310

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ a real git revision!)
# - id: talisman-push
```

*Disclaimer: Talisman cannot guarantee its functionality in MicroSoft's unsupported versions of Windows. Anyway Taliman is successfully tested on Windows 7 and server 2008 R2, which might not work in future releases.*

# Upgrading
Since release v0.4.4, Talisman <b>automatically updates</b> the binary to the latest release, when the hook is invoked (at pre-commit/pre-push, as set up). So, just sit back, relax, and keep using the latest Talisman without any extra efforts.
Expand Down
4 changes: 2 additions & 2 deletions global_install_scripts/install.bash
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,10 @@ function run() {
"Darwin")
echo "darwin"
;;
MINGW32_NT-10.0-WOW*)
MINGW32_NT-*)
echo "windows"
;;
MINGW64_NT-10.0*)
MINGW64_NT-*)
echo "windows"
;;
*)
Expand Down
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@ run() {
"Darwin")
echo "darwin"
;;
MINGW32_NT-10.0-WOW*)
MINGW32_NT-*)
echo "windows"
;;
MINGW64_NT-10.0*)
MINGW64_NT-*)
echo "windows"
;;
*)
Expand Down