summaryrefslogtreecommitdiff
path: root/docs/digital-ocean-video-tutorial.md
diff options
context:
space:
mode:
authorKitzunu <24550914+Kitzunu@users.noreply.github.com>2021-06-23 16:59:35 +0200
committerGitHub <noreply@github.com>2021-06-23 16:59:35 +0200
commitb94056e1aadb7fbcdfb8dad492b6066d5efa507f (patch)
tree6c9e8017f29b16f8ff84ccb1d71df1352deb8f04 /docs/digital-ocean-video-tutorial.md
parent9416921a7ec4dc5f1ed6b8a9098251afbc72d3f3 (diff)
downloadwiki-b94056e1aadb7fbcdfb8dad492b6066d5efa507f.tar.gz
wiki-b94056e1aadb7fbcdfb8dad492b6066d5efa507f.tar.bz2
wiki-b94056e1aadb7fbcdfb8dad492b6066d5efa507f.zip
chore: DSCRIPTS=static (#559)
* chore: test * chore: DSCRIPTS=static * Revert "chore: test"
Diffstat (limited to 'docs/digital-ocean-video-tutorial.md')
-rw-r--r--docs/digital-ocean-video-tutorial.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/digital-ocean-video-tutorial.md b/docs/digital-ocean-video-tutorial.md
index 554285e..9887990 100644
--- a/docs/digital-ocean-video-tutorial.md
+++ b/docs/digital-ocean-video-tutorial.md
@@ -130,7 +130,7 @@ GRANT ALL ON *.* TO 'dbadmin'@'%' IDENTIFIED BY 'password1' WITH GRANT OPTION;
- Navigate to the new build folder `cd build`
- Now we run the cmake command, this is the pre-compile step to ensure all cpp files are accounted for before we compile, and it tells the compile what to compile.
```
-cmake ../ -DCMAKE_INSTALL_PREFIX=$HOME/azeroth-server/ -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ -DTOOLS=0 -DSCRIPTS=1
+cmake ../ -DCMAKE_INSTALL_PREFIX=$HOME/azeroth-server/ -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ -DTOOLS=0 -DSCRIPTS=static
```
- Now we compile AzerothCore - this can take some time depending on the number of CPU cores your Droplet has. This tutorial is based on the 4 CPU core Droplet, which compiles in about 8 minutes. Enter the following command to compile the core and place the assembled items in their new home:
```