mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 01:52:22 +03:00
* Include build script (for new versions).
This commit is contained in:
parent
b190c0fe72
commit
2f69889c36
1 changed files with 12 additions and 0 deletions
12
build.bat
Normal file
12
build.bat
Normal file
|
@ -0,0 +1,12 @@
|
|||
:: Easy!Appointments
|
||||
::
|
||||
:: This scripts creates a new build for Easy!Appointments. This build
|
||||
:: can be used for distributing a new version of the project.
|
||||
TITLE Easy!Appointments
|
||||
del /s/f/q "build\*.*"
|
||||
for /f %%f in ('dir /ad /b "build"') do rd /s /q "build%f"
|
||||
mkdir "build"
|
||||
copy /y "release-notes.txt" "build\release-notes.txt"
|
||||
xcopy /s/e/y "src" "build"
|
||||
xcopy /y "build\configuration-sample.php" "build\configuration.php"
|
||||
del "build\configuration-sample.php"
|
Loading…
Reference in a new issue