6e69b0a987
Revert "another attempt" This reverts commit adfd562f02defc8d1e031b7a007d352f69eeb274. Revert "sigh" This reverts commit de6296d2814165c59d100f18af23df5b94ceb7c4. sigh another attempt okay maybe a solid solution change some things and....try again try again sigh...only support iphone fix app config remove unused files temp eas update cleanup plugin get app clip working progress add more to plugin start working on build plugin rename setup app clip fix created at oops, wrong workflow temp workflow edit add a bunch of libs to exclusion drop the fork rm manual config for clip fix name as well fix target name
28 lines
808 B
Bash
Executable File
28 lines
808 B
Bash
Executable File
#!/bin/bash
|
|
IOS_SHARE_EXTENSION_DIRECTORY="./ios/Share-with-Bluesky"
|
|
IOS_NOTIFICATION_EXTENSION_DIRECTORY="./ios/BlueskyNSE"
|
|
IOS_APP_CLIP_DIRECTORY="./ios/BlueskyClip"
|
|
MODULES_DIRECTORY="./modules"
|
|
|
|
if [ ! -d $IOS_SHARE_EXTENSION_DIRECTORY ]; then
|
|
echo "$IOS_SHARE_EXTENSION_DIRECTORY not found inside of your iOS project."
|
|
exit 1
|
|
else
|
|
cp -R $IOS_SHARE_EXTENSION_DIRECTORY $MODULES_DIRECTORY
|
|
fi
|
|
|
|
if [ ! -d $IOS_NOTIFICATION_EXTENSION_DIRECTORY ]; then
|
|
echo "$IOS_NOTIFICATION_EXTENSION_DIRECTORY not found inside of your iOS project."
|
|
exit 1
|
|
else
|
|
cp -R $IOS_NOTIFICATION_EXTENSION_DIRECTORY $MODULES_DIRECTORY
|
|
fi
|
|
|
|
|
|
if [ ! -d $IOS_APP_CLIP_DIRECTORY ]; then
|
|
echo "$IOS_APP_CLIP_DIRECTORY not found inside of your iOS project."
|
|
exit 1
|
|
else
|
|
cp -R $IOS_APP_CLIP_DIRECTORY $MODULES_DIRECTORY
|
|
fi
|