Skip to content

Commit

Permalink
translucentflyouts: fix install and uninstall scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Youxikong committed Mar 24, 2024
1 parent a4e9f5d commit 3cd21d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bucket/translucentflyouts.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
"if ( $architecture -eq \"64bit\" ) {",
"$Arg64 = \"$dir\\x64\\TFMain64.dll\" + \",Main /install\"",
"$Arg32 = \"$dir\\x86\\TFMain32.dll\" + \",Main /install\"",
"Start-Process Rundll32.exe -ArgumentList $Arg64 -WorkingDirectory $dir -Wait -Verb RunAs",
"Start-Process Rundll32.exe -ArgumentList $Arg32 -WorkingDirectory $dir -Wait -Verb RunAs",
"Start-Process Rundll32.exe -ArgumentList $Arg64 -WorkingDirectory $dir -Verb RunAs",
"Start-Process Rundll32.exe -ArgumentList $Arg32 -WorkingDirectory $dir -Verb RunAs",
"}",
"elseif ( $architecture -eq \"32bit\" ) {",
"$Arg = \"$dir\\x86\\TFMain32.dll\" + \",Main /install\"",
Expand Down

0 comments on commit 3cd21d0

Please sign in to comment.