Skip to content

Commit 1b23460

Browse files
committed
# Conflicts: # src/server/game/World/IWorld.h
2 parents a8672e9 + 1a951f5 commit 1b23460

159 files changed

Lines changed: 7127 additions & 1407 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/windows_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ${{ matrix.os }}
2222
name: ${{ matrix.os }}
2323
env:
24-
BOOST_ROOT: C:\local\boost_1_82_0
24+
BOOST_ROOT: C:\local\boost_1_87_0
2525
if: |
2626
github.repository == 'azerothcore/azerothcore-wotlk'
2727
&& !github.event.pull_request.draft

apps/installer/includes/functions.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22

33
# Set SUDO variable - one liner
4-
if [[ "$OSTYPE" == "msys"* ]]; then
4+
if [[ "$OSTYPE" == "msys"* || "$OSTYPE" == "cygwin"* ]]; then
55
SUDO=""
66
else
77
SUDO=$([ "$EUID" -ne 0 ] && echo "sudo" || echo "")
@@ -49,7 +49,7 @@ function inst_configureOS() {
4949
source "$AC_PATH_INSTALLER/includes/os_configs/$DISTRO.sh"
5050
;;
5151
*bsd*) echo "BSD is not supported yet" ;;
52-
msys*) source "$AC_PATH_INSTALLER/includes/os_configs/windows.sh" ;;
52+
msys*|cygwin*) source "$AC_PATH_INSTALLER/includes/os_configs/windows.sh" ;;
5353
*) echo "This platform is not supported" ;;
5454
esac
5555
}

0 commit comments

Comments
 (0)