-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from Loolzy/patch-1
fixed indentation and filedirectory
- Loading branch information
Showing
1 changed file
with
27 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,29 @@ | ||
#!/bin/bash | ||
echo "NadekoBot 1.0 Download" | ||
echo "Mirai was here." | ||
if git 2>&1 >/dev/null; | ||
then echo "Git Installed." | ||
else echo "Git is not installed. Please install Git." | exit 1 | ||
if dotnet 2>&1 >/dev/null; | ||
then echo "Dotnet installed." | ||
else echo "Dotnet is not installed. Please install dotnet." | exit 1 | ||
mkdir NadekoInstall_Temp | ||
echo "Created NadekoBot-temp folder" | ||
cd NadekoInstall_Temp | ||
echo "Downloading NadekoBot, please wait." | ||
git clone -b 1.0 --recursive -v https://github.com/Kwoth/NadekoBot.git | ||
echo "NadekoBot downloaded." | ||
cd NadekoInstall_Temp\NadekoBot\ | ||
dotnet restore >nul 2>&1 | ||
cd NadekoInstall_Temp\NadekoBot\src\NadekoBot\ | ||
echo "Building NadekoBot" | ||
dotnet build --configuration Release | ||
echo "Setting up NadekoBot" | ||
dotnet build --configuration Release | ||
echo "Done. You can close the window." | ||
|
||
echo "NadekoBot 1.0 Download" | ||
echo "Mirai was here." | ||
|
||
if git 2>&1 >/dev/null | ||
then echo "Git Installed." | ||
else echo "Git is not installed. Please install Git." | exit 1 | ||
|
||
if dotnet 2>&1 >/dev/null | ||
then echo "Dotnet installed." | ||
else echo "Dotnet is not installed. Please install dotnet." | exit 1 | ||
|
||
mkdir NadekoInstall_Temp | ||
echo "Created NadekoBot-temp folder" | ||
cd NadekoInstall_Temp | ||
echo "Downloading NadekoBot, please wait." | ||
git clone -b 1.0 --recursive -v https://github.com/Kwoth/NadekoBot.git | ||
echo "NadekoBot downloaded." | ||
cd NadekoInstall_Temp/NadekoBot/ | ||
dotnet restore >nul 2>&1 | ||
cd NadekoInstall_Temp/NadekoBot/src/NadekoBot/ | ||
echo "Building NadekoBot" | ||
dotnet build --configuration Release | ||
echo "Setting up NadekoBot" | ||
dotnet build --configuration Release | ||
echo "Done. You can close the window." | ||
|
||
exit 0 |