We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bc9fa99 + fe08727 commit 14d439fCopy full SHA for 14d439f
contrib/tools/block-replay.sh
@@ -117,7 +117,7 @@ configure_replay_slices() {
117
118
## create a copy of the linked db with <number of CORES><number of RESERVED CORES>
119
## decrement by 1 since we already have ${SLICE_DIR}0
120
- for ((i=1;i<=$( CORES - RESERVED - 1);i++)); do
+ for ((i=1;i<=$(( CORES - RESERVED - 1));i++)); do
121
echo "Copying ${SLICE_DIR}0 -> ${COLYELLOW}${SLICE_DIR}${i}${COLRESET}"
122
cp -R "${SLICE_DIR}0" "${SLICE_DIR}${i}" || {
123
echo "${COLRED}Error${COLRESET} copying ${SLICE_DIR}0 -> ${SLICE_DIR}${i}"
0 commit comments