Skip to content

Commit

Permalink
prevent warning caused by mingw
Browse files Browse the repository at this point in the history
  • Loading branch information
ivaquero committed Jan 5, 2024
1 parent 668a9e6 commit cd1937d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion oxidizer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,9 @@ for plugin in "${OX_PLUGINS[@]}"; do
done

declare -a OX_CORE_PLUGINS
OX_CORE_PLUGINS=(oxpb oxput oxpnw)
if [[ $(uname) = "Darwin" || $(uname) = "Linux" ]]; then
OX_CORE_PLUGINS=(oxpb oxput oxpnw)
fi

# load core plugins
for core_plugin in "${OX_CORE_PLUGINS[@]}"; do
Expand Down

0 comments on commit cd1937d

Please sign in to comment.