Skip to content

Commit 891f1bc

Browse files
authored
Merge pull request #8 from scotts/master
Edit readme
2 parents cf56998 + 2f94351 commit 891f1bc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Sliding Window Aggregators
2-
This repo contains reference implementations of many different sliding window
3-
aggregation algorithms.
2+
This repo contains reference implementations of sliding window aggregation
3+
algorithms.
44

55
All of these algorithms require operators that are associative. We classify the
66
algorithms in two groups: those that require data to arrive in-order, and those

cpp/build-and-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ IMAGE="swag-builder-cpp"
55
CWD="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
66

77
# only proceed if this directory is in the latest commit
8-
if [ $(${CWD}/can-skip.sh .) ]; then
8+
if $(cpp/can-skip.sh cpp); then
99
echo "Skipping build and test for C++ code."
1010
exit 0
1111
fi

0 commit comments

Comments
 (0)