File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -97,15 +97,15 @@ where
9797 let lock_path = config
9898 . entry_lock_script
9999 . ok_or :: < Error > ( OpenError :: NoEntryLockScript . into ( ) ) ?;
100- script:: Loader :: new ( & lock_path) . try_build ( ) ?
100+ script:: Loader :: new ( lock_path) . try_build ( ) ?
101101 } ;
102102
103103 // load the entry unlock script
104104 let unlock_script = {
105105 let unlock_path = config
106106 . entry_unlock_script
107107 . ok_or :: < Error > ( OpenError :: NoEntryUnlockScript . into ( ) ) ?;
108- script:: Loader :: new ( & unlock_path) . try_build ( ) ?
108+ script:: Loader :: new ( unlock_path) . try_build ( ) ?
109109 } ;
110110
111111 // 3. Construct the first entry, calling back to get the entry signed
Original file line number Diff line number Diff line change 6969 let unlock_path = config
7070 . entry_unlock_script
7171 . ok_or :: < Error > ( UpdateError :: NoEntryUnlockScript . into ( ) ) ?;
72- script:: Loader :: new ( & unlock_path) . try_build ( ) ?
72+ script:: Loader :: new ( unlock_path) . try_build ( ) ?
7373 } ;
7474
7575 // get the entry signing key
You can’t perform that action at this time.
0 commit comments