Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix variable
  • Loading branch information
Timer committed Oct 29, 2017
commit b926eba32beebfe5491415950ba091186e0d122f
2 changes: 1 addition & 1 deletion tasks/e2e-kitchensink.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function create_react_app {
}

function install_package {
pkg = $(basename $1)
local pkg=$(basename $1)

# Clean target (for safety)
rm -rf node_modules/$pkg/
Expand Down
2 changes: 1 addition & 1 deletion tasks/e2e-simple.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ function create_react_app {
}

function install_package {
pkg = $(basename $1)
local pkg=$(basename $1)

# Clean target (for safety)
rm -rf node_modules/$pkg/
Expand Down