-
Notifications
You must be signed in to change notification settings - Fork 0
/
first_time_init.js
9 lines (9 loc) · 3.84 KB
/
first_time_init.js
1
2
3
4
5
6
7
8
9
let repoURLS = ["https://github.com/NeonGamerBot-QK/crunchyroll-comments","https://github.com/NeonGamerBot-QK/passwordgenerator","https://github.com/NeonGamerBot-QK/discord-dash","https://github.com/NeonGamerBot-QK/passionproject","https://github.com/NeonGamerBot-QK/ConspiracyTheories","https://github.com/NeonGamerBot-QK/zeon","https://github.com/NeonGamerBot-QK/Vencord-Plugins","https://github.com/NeonGamerBot-QK/clearwhitespace","https://github.com/NeonGamerBot-QK/eslint-config","https://github.com/NeonGamerBot-QK/gnano","https://github.com/NeonGamerBot-QK/bounty-sync-repls","https://github.com/NeonGamerBot-QK/expo-iap","https://github.com/NeonGamerBot-QK/zeon-site","https://github.com/NeonGamerBot-QK/spooktube","https://github.com/NeonGamerBot-QK/Vencord-themes","https://github.com/NeonGamerBot-QK/yt-update-video","https://github.com/NeonGamerBot-QK/last-to-leave-the-vc","https://github.com/NeonGamerBot-QK/scam-links","https://github.com/NeonGamerBot-QK/saahild.com","https://github.com/NeonGamerBot-QK/Vencord-builds","https://github.com/NeonGamerBot-QK/uptime-bg-app","https://github.com/NeonGamerBot-QK/nonbypassable-form","https://github.com/NeonGamerBot-QK/ollamaai-support-bot","https://github.com/NeonGamerBot-QK/credits","https://github.com/NeonGamerBot-QK/utils","https://github.com/NeonGamerBot-QK/cmu-sandbox","https://github.com/NeonGamerBot-QK/spotify-parse-csv","https://github.com/NeonGamerBot-QK/cra-template-neon","https://github.com/NeonGamerBot-QK/img-gallery-api","https://github.com/NeonGamerBot-QK/is-react-instance","https://github.com/NeonGamerBot-QK/ssh-process","https://github.com/NeonGamerBot-QK/unoffical-ollama-api","https://github.com/NeonGamerBot-QK/ntts-hackathon","https://github.com/NeonGamerBot-QK/english-basketball-project","https://github.com/NeonGamerBot-QK/kcd-vex-24","https://github.com/NeonGamerBot-QK/zeoncanvas","https://github.com/NeonGamerBot-QK/spotifypanel","https://github.com/NeonGamerBot-QK/ghprofile","https://github.com/NeonGamerBot-QK/music-app","https://github.com/NeonGamerBot-QK/sms-app","https://github.com/NeonGamerBot-QK/temp-email","https://github.com/NeonGamerBot-QK/urlshort","https://github.com/NeonGamerBot-QK/CRC","https://github.com/NeonGamerBot-QK/resume-action","https://github.com/NeonGamerBot-QK/custom-cdn","https://github.com/NeonGamerBot-QK/AI-Blog","https://github.com/NeonGamerBot-QK/GHUIapp","https://github.com/NeonGamerBot-QK/openeye","https://github.com/NeonGamerBot-QK/fake-identity-app","https://github.com/NeonGamerBot-QK/ssh-server","https://github.com/NeonGamerBot-QK/rust-rest-api","https://github.com/NeonGamerBot-QK/dog","https://github.com/NeonGamerBot-QK/cat","https://github.com/NeonGamerBot-QK/bz","https://github.com/NeonGamerBot-QK/Annotationapp","https://github.com/NeonGamerBot-QK/no-madiens","https://github.com/NeonGamerBot-QK/earthday","https://github.com/NeonGamerBot-QK/draw-app","https://github.com/NeonGamerBot-QK/yt-player","https://github.com/NeonGamerBot-QK/62885A-robotics","https://github.com/NeonGamerBot-QK/tictactoeapp-cs","https://github.com/NeonGamerBot-QK/example-db-app","https://github.com/NeonGamerBot-QK/Global-Warming","https://github.com/NeonGamerBot-QK/GameOfText","https://github.com/NeonGamerBot-QK/solidmedia","https://github.com/NeonGamerBot-QK/quiz-service","https://github.com/NeonGamerBot-QK/react-chat-app","https://github.com/NeonGamerBot-QK/aboutme-template","https://github.com/NeonGamerBot-QK/bitcoin-price-app","https://github.com/NeonGamerBot-QK/msuci-test","https://github.com/NeonGamerBot-QK/sfs-teachings","https://github.com/NeonGamerBot-QK/git","https://github.com/NeonGamerBot-QK/NeonGamerBot-QK"]
const fs = require('fs')
const gitModulesContent = fs.readFileSync('./.gitmodules').toString()
repoURLS = repoURLS.filter(url => {
return !gitModulesContent.includes(url)
})
repoURLS.forEach((url) => {
require('child_process').execSync(`git submodule add ${url}`)
})