Skip to content

Instantly share code, notes, and snippets.

@icodeyou
icodeyou / import_assets_from_figma.sh
Created January 4, 2023 09:59
Script to import assets from folder generated by Figma Export
#!/bin/bash
# Copyright Rémi Deronzier
source ./import_one_figma_asset.sh
# variables
downloadsFolderName=$DOWNLOADS_FOLDER_NAME
downloadsFolderPath="$HOME/$downloadsFolderName"
@icodeyou
icodeyou / gist:cbe6aea82fdf50e87f63ef7301444e59
Created April 14, 2022 08:28 — forked from jessedc/gist:12a74aff88d06e669cf1c9999408c62c
xcodebuild --help ExportOptions.plist organised in a more logical way
ExportOptions.plist - Options in a better order
Xcodebuild manfile says the following
> **Distributing Archives**
> The -exportArchive option specifies that xcodebuild should distribute the archive specified by -archivePath using the options specified by
> -exportOptionsPlist. xcodebuild -help can print the full set of available inputs to -exportOptionsPlist. The product can either be uploaded to Apple or
> exported locally. The exported product will be placed at the path specified by -exportPath.
The following is the list of settings (as of Xcode 10.1) output by `xcodebuild --help` but in a more logical order.