mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
1#!/bin/bash 2IOS_SHARE_EXTENSION_DIRECTORY="./ios/Share-with-Bluesky" 3MODULES_DIRECTORY="./modules" 4 5if [ ! -d $IOS_SHARE_EXTENSION_DIRECTORY ]; then 6 echo "$IOS_SHARE_EXTENSION_DIRECTORY not found inside of your iOS project." 7 exit 1 8else 9 cp -R $IOS_SHARE_EXTENSION_DIRECTORY $MODULES_DIRECTORY 10fi