forked from jleclanche/fireplace
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move scripts and bootstrap into fireplace
Necessary for scripts to be callable from setup.py install (they must be part of package) Part of jleclanche#318
- Loading branch information
1 parent
108384a
commit 3edc802
Showing
5 changed files
with
8 additions
and
7 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
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,8 +1,8 @@ | ||
:; ./scripts/bootstrap.sh; exit $? | ||
:; $(dirname $0)/scripts/bootstrap.sh; exit $? | ||
@echo off | ||
@where Powershell.exe | ||
if %ERRORLEVEL% neq 0 ( | ||
echo Please install Powershell from https://www.microsoft.com/en-us/download/details.aspx?id=40855 | ||
) ELSE ( | ||
Powershell.exe -executionpolicy remotesigned -File scripts/bootstrap.ps1 | ||
Powershell.exe -executionpolicy remotesigned -File %~dp0scripts\bootstrap.ps1 | ||
) |
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
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
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