-
Notifications
You must be signed in to change notification settings - Fork 4
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 #32 from maxwroc/DevBranch
Dev branch
- Loading branch information
Showing
7 changed files
with
85 additions
and
38 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
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
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
@echo off | ||
set extDir="" | ||
set packer="%~dp0..\WinScripts\batch\ExtensionPacker.bat" | ||
|
||
rem if not "%1%"=="" set extDir=%1 | ||
if not exist %extDir% ( | ||
set extDir="UrlEditorPRO\UrlEditorPRO\app" | ||
) | ||
|
||
|
||
if not exist %extDir% ( | ||
goto error | ||
) | ||
|
||
if not exist %packer% ( | ||
echo Packer not found %packer% | ||
goto :eof | ||
) | ||
|
||
%packer% %extDir% | ||
|
||
goto :eof | ||
|
||
:error | ||
echo Extension directory not found: | ||
echo %extDir%, %1 |