Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove the ./bin/dev.sh script in favor of the makefile #443

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .template/spec/base/bin/template_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,6 @@
expect(file('bin/worker.sh')).to be_executable
end

it 'creates the start dev server script' do
expect(file('bin/dev')).to exist
expect(file('bin/dev')).to be_executable
end

it 'creates the docker prepare script' do
expect(file('bin/docker-prepare')).to exist
expect(file('bin/docker-prepare')).to be_executable
Expand Down
2 changes: 1 addition & 1 deletion Makefile.tt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ include .env
dev:
make install-dependencies
make env/setup
./bin/dev
foreman start -f Procfile.dev

env/setup:
./bin/envsetup.sh
Expand Down
3 changes: 0 additions & 3 deletions bin/dev

This file was deleted.

1 change: 0 additions & 1 deletion bin/template.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,5 @@
copy_file 'bin/start.sh', mode: :preserve
copy_file 'bin/test.sh', mode: :preserve
copy_file 'bin/worker.sh', mode: :preserve
copy_file 'bin/dev', mode: :preserve
copy_file 'bin/docker-prepare', mode: :preserve
copy_file 'bin/docker-assets-precompile', mode: :preserve