Compare commits
2 Commits
8ed458b4f3
...
378ab4c026
Author | SHA1 | Date | |
---|---|---|---|
378ab4c026 | |||
5485517150 |
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,3 +1,3 @@
|
|||||||
target/
|
target/
|
||||||
deploy/
|
dist/
|
||||||
*.class
|
*.class
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -uo pipefail
|
set -uo pipefail
|
||||||
|
|
||||||
if [[ -d deploy/ ]]; then
|
if [[ -d dist/ ]]; then
|
||||||
rm -r deploy/;
|
rm -r dist/;
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cp -r target/ deploy/;
|
cp -r target/ dist/;
|
||||||
|
@@ -93,7 +93,7 @@ public interface WorkdayLoadingBar {
|
|||||||
|
|
||||||
|
|
||||||
private long getMinLunchDuration(int endTimeOffset) {
|
private long getMinLunchDuration(int endTimeOffset) {
|
||||||
if (endTimeOffset <= 0) {
|
if (endTimeOffset >= 0) {
|
||||||
return MIN_LUNCH_DURATION;
|
return MIN_LUNCH_DURATION;
|
||||||
}
|
}
|
||||||
long totalDuration = MAX_NUMBER_WORK_MINS + endTimeOffset;
|
long totalDuration = MAX_NUMBER_WORK_MINS + endTimeOffset;
|
||||||
|
Reference in New Issue
Block a user