File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ keywords = ["shuttle-service", "static-folder"]
9
9
10
10
[dependencies ]
11
11
async-trait = " 0.1.56"
12
- shuttle-service = { path = " ../../service" , version = " 0.7.3 " , default-features = false }
12
+ shuttle-service = { path = " ../../service" , version = " 0.7.2 " , default-features = false }
13
13
tokio = { version = " 1.19.2" , features = [" rt" ] }
14
14
15
15
[dev-dependencies ]
Original file line number Diff line number Diff line change @@ -16,8 +16,8 @@ impl ResourceBuilder<PathBuf> for StaticFolder {
16
16
factory : & mut dyn Factory ,
17
17
_runtime : & Runtime ,
18
18
) -> Result < PathBuf , shuttle_service:: Error > {
19
- let input_dir = factory. get_build_path ( ) . join ( "static" ) ;
20
- let output_dir = factory. get_storage_path ( ) . join ( "static" ) ;
19
+ let input_dir = factory. get_build_path ( ) ? . join ( "static" ) ;
20
+ let output_dir = factory. get_storage_path ( ) ? . join ( "static" ) ;
21
21
22
22
rename ( input_dir, output_dir. clone ( ) ) ?;
23
23
You can’t perform that action at this time.
0 commit comments