mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-28 17:01:16 +00:00
13 lines
140 B
Bash
Executable File
13 lines
140 B
Bash
Executable File
#!/bin/sh
|
|
|
|
EXIT_STATUS=0
|
|
|
|
# Add changes.
|
|
git add -i
|
|
|
|
# Migrate database changes if needed
|
|
php artisan migrate
|
|
|
|
# Commit changes.
|
|
git commit
|