Skip to content

Commit

Permalink
fixing typos and modified time of execution for cron job
Browse files Browse the repository at this point in the history
  • Loading branch information
martinrobled0 committed Oct 24, 2023
1 parent 8863b68 commit 57bf75b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ jobs:
echo "*** Cron job to get github activity ****"
chmod +x /home/admin/projectlab/app/githubActivity.sh
{
line="0 0 * * * /home/admin/projectlab/app/githubActivity.sh"
line="0 9,21 * * * /home/admin/projectlab/app/githubActivity.sh"
crontab -l | grep -Fv "$line"
echo "$line"
} | crontab -
Expand Down
2 changes: 1 addition & 1 deletion app/routes/projects/$projectId/github-info/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ import { useLoaderData, useSubmit } from "@remix-run/react";
<Paper sx={{ padding: 2, width: 1 }} >
<Grid container sx={{ margin: 2}} justifyContent="space-between" >
<Typography color="text.primary">
Stadistics
Statistics
</Typography>
</Grid>
<Grid container sx={{ padding: 2, width: 1 }} >
Expand Down
2 changes: 1 addition & 1 deletion app/routes/projects/$projectId/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ export default function ProjectDetailsPage() {

<Card>
<CardHeader
title="Github Stadistics"
title="GitHub Statistics"
action={
<Button variant="contained" href={`/projects/${project.id}/github-info`} endIcon={<GitHub />}>
See Info
Expand Down

0 comments on commit 57bf75b

Please sign in to comment.