Convert mac-os-el-capitan-pkg-to-iso.sh from using hdiutil and asr to using Linux utilities.
Important: You will need about 30GB of free disk space.
Convert mac-os-el-capitan-pkg-to-iso.sh from using hdiutil and asr to using Linux utilities.
Important: You will need about 30GB of free disk space.
| const USERS_SHEET_NAME = "users", | |
| TASKS_SHEET_NAME = "tasks", | |
| SPREADSHEET_URL = "https://docs.google.com/spreadsheets/d/abc123456/edit", /* TODO(Developer): Replace the spreadsheet ID */ | |
| /* Use `SpreadsheetApp.getActiveSpreadsheet()` if the Apps Script was created from a Google Sheet. */ | |
| spreadsheet = SpreadsheetApp.openByUrl(SPREADSHEET_URL); | |
| const getEmailByNickname = (() => { | |
| const usersSheet = spreadsheet.getSheetByName(USERS_SHEET_NAME); | |
| let userEmailTable = {}; |