7 lines
488 B
Bash
Executable File
7 lines
488 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Find all TypeScript files in the app directory
|
|
find ./app -type f -name "*.ts*" -print0 | xargs -0 sed -i '' 's|import { authOptions } from "@/app/api/auth/\\[...nextauth\\]/route";|import { authOptions } from "@/app/api/auth/options";|g'
|
|
find ./app -type f -name "*.ts*" -print0 | xargs -0 sed -i '' 's|import { authOptions } from "../../auth/\\[...nextauth\\]/route";|import { authOptions } from "../../auth/options";|g'
|
|
|
|
echo "Updated authOptions imports in all files." |