Merge branch 'fix-windows'
commit
9ec89a17e2
|
@ -55,5 +55,6 @@ pub fn load <
|
||||||
> (
|
> (
|
||||||
config_file_path: P
|
config_file_path: P
|
||||||
) -> Result <T, LoadTomlError> {
|
) -> Result <T, LoadTomlError> {
|
||||||
load_public (config_file_path)
|
let f = File::open (&config_file_path)?;
|
||||||
|
load_inner (f)
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,5 +2,5 @@
|
||||||
|
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
cargo check -p ptth_server --target x86_64-pc-windows-gnu
|
cargo check --target x86_64-pc-windows-gnu
|
||||||
cargo check -p ptth_server --target x86_64-unknown-linux-gnu
|
cargo check --target x86_64-unknown-linux-gnu
|
||||||
|
|
Loading…
Reference in New Issue