#!/usr/bin/env bash
# Copyright Β© 2021 The Radicle Upstream Contributors
#
# This file is part of radicle-upstream, distributed under the GPLv3
# with Radicle Linking Exception. For full terms see the included
# LICENSE file.
set -eou pipefail
platform="$(uname)"
declare -a dirs;
if [ "$platform" == "Darwin" ]; then
dirs=(
"$HOME/.radicle"
"$HOME/Library/Application Support/Radicle Upstream"
"$HOME/Library/Application Support/xyz.radicle.radicle"
"$HOME/Library/Application Support/xyz.radicle.radicle-link"
"$HOME/Library/Application Support/xyz.radicle.radicle-upstream"
"$HOME/Library/Preferences/xyz.radicle.radicle-upstream.plist"
This file has been truncated. show original