Skip to content

Commit

Permalink
Merge pull request #7 from XDanielPaul/v1
Browse files Browse the repository at this point in the history
Removed whitespace chars when reading directories (PACMAN-464)
  • Loading branch information
kumekay committed Oct 5, 2022
2 parents afbf807 + 53bc949 commit 53e82ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion upload.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

IFS=';' read -ra DIRECTORIES <<<"${COMPONENTS_DIRECTORIES:-.}"
IFS=';' read -ra DIRECTORIES <<<"$(echo -e "${COMPONENTS_DIRECTORIES:-.}" | tr -d '[:space:]')"
NAMESPACE=${COMPONENTS_NAMESPACE:-espressif}
UPLOAD_ARGUMENTS=("--allow-existing" "--namespace=${NAMESPACE}" )
if [ -n "$SKIP_PRE_RELEASE" ]; then
Expand Down

0 comments on commit 53e82ce

Please sign in to comment.