Skip to content

Commit a951886

Browse files
fix build
1 parent f58c906 commit a951886

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,22 @@ jobs:
1414

1515
# checks out the source code for a job over SSH
1616
- checkout
17-
17+
1818
- restore_cache:
1919
keys:
2020
- gem-cache-v1-{{ arch }}-{{ .Branch }}-{{ checksum "Gemfile.lock" }}
2121
- gem-cache-v1-{{ arch }}-{{ .Branch }}
2222
- gem-cache-v1
23-
23+
2424
- run:
2525
name: install dependencies
2626
command: bundle install --path vendor/bundle
27-
27+
2828
- save_cache:
2929
key: gem-cache-v1-{{ arch }}-{{ .Branch }}-{{ checksum "Gemfile.lock" }}
3030
paths:
3131
- vendor/bundle
32-
32+
3333
- run:
3434
name: deployment
3535
command: |

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
def git_clean?
22
git_state = `git status 2> /dev/null | tail -n1`
3-
clean = (git_state =~ /working tree clean/)
3+
clean = (git_state =~ /clean/)
44
end
55

66
task :check_git do

0 commit comments

Comments
 (0)