mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Try to make Travis happy.
This commit is contained in:
@@ -3,7 +3,8 @@ solution: Aaru.sln
|
|||||||
mono: none
|
mono: none
|
||||||
dotnet: 2.1.502
|
dotnet: 2.1.502
|
||||||
script:
|
script:
|
||||||
- ./build.sh
|
- dotnet restore Aaru.sln
|
||||||
|
- dotnet build Aaru.sln
|
||||||
notifications:
|
notifications:
|
||||||
irc:
|
irc:
|
||||||
channels:
|
channels:
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ namespace Aaru.Commands
|
|||||||
_gdprChange = gdprChange;
|
_gdprChange = gdprChange;
|
||||||
_autoCall = autoCall;
|
_autoCall = autoCall;
|
||||||
|
|
||||||
Handler = CommandHandler.Create<bool, bool>(Invoke);
|
Handler = CommandHandler.Create((Func<bool, bool, int>)Invoke);
|
||||||
}
|
}
|
||||||
|
|
||||||
public int Invoke(bool debug, bool verbose)
|
public int Invoke(bool debug, bool verbose)
|
||||||
|
|||||||
@@ -61,7 +61,7 @@ namespace Aaru.Commands
|
|||||||
Argument = new Argument<bool>(() => false), Required = false
|
Argument = new Argument<bool>(() => false), Required = false
|
||||||
});
|
});
|
||||||
|
|
||||||
Handler = CommandHandler.Create<bool, bool, bool, bool>(Invoke);
|
Handler = CommandHandler.Create((Func<bool, bool, bool, bool, int>)Invoke);
|
||||||
}
|
}
|
||||||
|
|
||||||
public int Invoke(bool debug, bool verbose, bool clear, bool clearAll)
|
public int Invoke(bool debug, bool verbose, bool clear, bool clearAll)
|
||||||
|
|||||||
Reference in New Issue
Block a user