Compare commits

...

2 Commits

Author SHA1 Message Date
Derek e8cfa11781 Fix ANOTHER import 2022-06-14 22:12:08 -04:00
Derek 5692e1caad Fix update script to work with new branches 2022-06-14 22:11:39 -04:00
2 changed files with 2 additions and 0 deletions

View File

@ -11,6 +11,7 @@ import { DriveFiles, Notes, Users, Emojis, Polls } from '@/models/index.js';
import { In, IsNull } from 'typeorm';
import { Emoji } from '@/models/entities/emoji.js';
import { Poll } from '@/models/entities/poll.js';
import { Channel } from '@/models/entities/channel.js';
export default async function renderNote(note: Note, dive = true, isTalk = false): Promise<Record<string, unknown>> {
const getPromisedFiles = async (ids: string[]) => {

View File

@ -1,6 +1,7 @@
#!/usr/bin/env fish
argparse "branch=" -- $argv
cd misskey
git fetch
git checkout $_flag_branch
git pull
npm run clean