Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/test-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ jobs:
run: "'${{ github.workspace }}${{ runner.os == 'Windows' && '\\' || '/' }}main.sh'"
shell: bash
env:
DEVA_INSTALL_VERSION: latest
DEVA_INSTALL_FEATURES: legacy-tasks
DDA_INSTALL_VERSION: latest
DDA_INSTALL_FEATURES: legacy-tasks

- name: Verify
run: deva --version
run: dda --version
2 changes: 1 addition & 1 deletion main.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ install_features() {
echo -e "${PURPLE}Installing features: ${FEATURES}${RESET}"

ARGS=()
for feature in $FEATURES; do
for feature in $(echo $FEATURES); do
ARGS+=("-f" "$feature")
done

Expand Down