Skip to content

Commit

Permalink
fix a bug in main.ps1
Browse files Browse the repository at this point in the history
  • Loading branch information
ivaquero committed Jan 6, 2024
1 parent cb7230e commit 8a88ddc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion oxidizer.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ $Global:OX_OXIDE = @{}
# Load Plugins
##########################################################

# load system plugin
. $Global:OX_OXYGEN.oxw

# load custom plugins
. $Global:OX_ELEMENT.ox

Expand All @@ -61,7 +64,7 @@ ForEach ($plugin in $Global:OX_PLUGINS) {
}

# load core plugins
$Global:OX_CORE_PLUGINS = @('oxpw', 'oxps', 'oxput', 'oxpnw')
$Global:OX_CORE_PLUGINS = @('oxps', 'oxput', 'oxpnw')

ForEach ($core_plugin in $Global:OX_CORE_PLUGINS) {
. $Global:OX_OXYGEN.$($core_plugin)
Expand Down

0 comments on commit 8a88ddc

Please sign in to comment.