Skip to content

Commit

Permalink
Merge pull request yadm-dev#395 from erijo/shellcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLocehiliosan committed Jan 7, 2022
2 parents 71cb08a + 1aa9839 commit f119741
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion test/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM ubuntu:18.04
MAINTAINER Tim Byrne <[email protected]>

# Shellcheck and esh versions
ARG SC_VER=0.7.1
ARG SC_VER=0.8.0
ARG ESH_VER=0.3.1

# Install prerequisites and configure UTF-8 locale
Expand Down
2 changes: 1 addition & 1 deletion test/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def pytest_addoption(parser):
@pytest.fixture(scope='session')
def shellcheck_version():
"""Version of shellcheck supported"""
return '0.7.1'
return '0.8.0'


@pytest.fixture(scope='session')
Expand Down
14 changes: 7 additions & 7 deletions yadm
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@ function score_file() {
tgt="${src%%##*}"
conditions="${src#*##}"

if [ "${tgt#$YADM_ALT/}" != "${tgt}" ]; then
tgt="${YADM_BASE}/${tgt#$YADM_ALT/}"
if [ "${tgt#"$YADM_ALT/"}" != "${tgt}" ]; then
tgt="${YADM_BASE}/${tgt#"$YADM_ALT/"}"
fi

score=0
Expand Down Expand Up @@ -552,8 +552,8 @@ function alt() {
if [[ $possible_alt =~ .\#\#. ]]; then
base_alt="${possible_alt%%##*}"
yadm_alt="${YADM_BASE}/${base_alt}"
if [ "${yadm_alt#$YADM_ALT/}" != "${yadm_alt}" ]; then
base_alt="${yadm_alt#$YADM_ALT/}"
if [ "${yadm_alt#"$YADM_ALT/"}" != "${yadm_alt}" ]; then
base_alt="${yadm_alt#"$YADM_ALT/"}"
fi
possible_alts+=("$YADM_BASE/${base_alt}")
fi
Expand Down Expand Up @@ -1382,7 +1382,7 @@ function upgrade() {
;
do
if [ -e "$legacy_path" ]; then
new_filename=${legacy_path#$YADM_LEGACY_DIR/}
new_filename="${legacy_path#"$YADM_LEGACY_DIR/"}"
new_filename="$YADM_DIR/$new_filename"
actions_performed=1
echo "Moving $legacy_path to $new_filename"
Expand Down Expand Up @@ -1946,7 +1946,7 @@ function relative_path() {
result=""

count=0
while [ "${full#$common_part}" == "${full}" ]; do
while [ "${full#"$common_part"}" == "${full}" ]; do
[ "$count" = "500" ] && return # this is a failsafe
# no match, means that candidate common part is not correct
# go up one level (reduce common part)
Expand All @@ -1967,7 +1967,7 @@ function relative_path() {

# since we now have identified the common part,
# compute the non-common part
forward_part="${full#$common_part}"
forward_part="${full#"$common_part"}"

# and now stick all parts together
if [[ -n $result ]] && [[ -n $forward_part ]]; then
Expand Down

0 comments on commit f119741

Please sign in to comment.