mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
6 lines
272 B
Bash
Executable file
6 lines
272 B
Bash
Executable file
#!/bin/bash
|
|
if [ -z "$(ls -A "${DEPS_DIR}/cmake/bin" 2>/dev/null)" ]; then
|
|
mkdir -p "${DEPS_DIR}/cmake" && travis_retry wget --no-check-certificate -O - "${CMAKE_URL}" | tar --strip-components=1 -xz -C "${DEPS_DIR}/cmake"
|
|
fi
|
|
|
|
export PATH="${DEPS_DIR}/cmake/bin:${PATH}"
|