This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -eu | |
UNITY="/Applications/Unity/Hub/Editor/2022.3.6f1/Unity.app/Contents/MacOS/Unity" | |
UNITY="/Applications/Unity/Hub/Editor/2022.3.22f1/Unity.app/Contents/MacOS/Unity" | |
clear_and_install() { | |
local FOLDER="$1" | |
local PACKAGE="$2" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import discord | |
from discord.utils import get | |
import subprocess | |
import getpass | |
import tempfile | |
import os | |
client = discord.Client() | |
passwd = (getpass.getpass() + '\n').encode() | |
token = os.environ.get('DISCORD_TOKEN') | |
@client.event |