theos icon indicating copy to clipboard operation
theos copied to clipboard

A log for a rm call shows up when making project

Open inoahdev opened this issue 7 years ago • 0 comments

(Thanks for reporting an issue! Please make sure you click the link above to view the issue guidelines, then fill out the blanks below.)

What are the steps to reproduce this issue?

  1. cd project
  2. make do

What happens?

A log of rm's command is printed to console, as seen below:

==> Linking tweak LaunchInSafeMode (armv7)…
==> Generating debug symbols for LaunchInSafeMode…
rm /Users/administrator/Projects/LaunchInSafeMode/.theos/obj/debug/armv7/Source/Hooks/BSLaunchdUtilities.x.m /Users/administrator/Projects/LaunchInSafeMode/.theos/obj/debug/armv7/Source/Hooks/SBApplicationShortcutMenuDelegate.x.m /Users/administrator/Projects/LaunchInSafeMode/.theos/obj/debug/armv7/Source/Hooks/SBApplicationShortcutStoreManager.x.m /Users/administrator/Projects/LaunchInSafeMode/.theos/obj/debug/armv7/Source/Hooks/SBUIAppIconForceTouchController.x.m /Users/administrator/Projects/LaunchInSafeMode/.theos/obj/debug/armv7/Source/Hooks/SBApplicationShortcutMenu.x.m /Users/administrator/Projects/LaunchInSafeMode/.theos/obj/debug/armv7/Source/Hooks/SBUIAppIconForceTouchControllerDataProvider.x.m
==> Compiling Source/Classes/LaunchInSafeModeTweak.m (arm64)…
==> Preprocessing Source/Hooks/BSLaunchdUtilities.x…

and

==> Linking tweak LaunchInSafeMode (arm64)…
==> Generating debug symbols for LaunchInSafeMode…
rm /Users/administrator/Projects/LaunchInSafeMode/.theos/obj/debug/arm64/Source/Hooks/SBApplicationShortcutMenu.x.m /Users/administrator/Projects/LaunchInSafeMode/.theos/obj/debug/arm64/Source/Hooks/SBUIAppIconForceTouchControllerDataProvider.x.m /Users/administrator/Projects/LaunchInSafeMode/.theos/obj/debug/arm64/Source/Hooks/SBApplicationShortcutMenuDelegate.x.m /Users/administrator/Projects/LaunchInSafeMode/.theos/obj/debug/arm64/Source/Hooks/SBApplicationShortcutStoreManager.x.m /Users/administrator/Projects/LaunchInSafeMode/.theos/obj/debug/arm64/Source/Hooks/BSLaunchdUtilities.x.m /Users/administrator/Projects/LaunchInSafeMode/.theos/obj/debug/arm64/Source/Hooks/SBUIAppIconForceTouchController.x.m
==> Merging tweak LaunchInSafeMode…
==> Signing LaunchInSafeMode…

What were you expecting to happen?

I expected the logs to not show up, and result in only the following lines being printed for the two examples given above:

==> Linking tweak LaunchInSafeMode (armv7)…
==> Generating debug symbols for LaunchInSafeMode…
==> Compiling Source/Classes/LaunchInSafeModeTweak.m (arm64)…
==> Preprocessing Source/Hooks/BSLaunchdUtilities.x…

and

==> Linking tweak LaunchInSafeMode (arm64)…
==> Generating debug symbols for LaunchInSafeMode…
==> Merging tweak LaunchInSafeMode…
==> Signing LaunchInSafeMode…

Any logs, error output, etc?

The logs are right above

Any other comments?

None

What versions of software are you using?

Operating System: macOS 10.13.5

Toolchain: Xcode 9.4.1

SDK Version: 11.2

inoahdev avatar Jun 30 '18 00:06 inoahdev